home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / Finger Server Source / fcb.h < prev    next >
Text File  |  1990-10-31  |  446b  |  27 lines

  1. /*
  2.  * format of a file control block
  3.  */
  4.  
  5. struct FCBrec_R {
  6.   long fcbFlNm;
  7.   char fcbFlags;
  8.   char fcbTypByt;
  9.   short fcbSBlk;
  10.   long fcbEOF;
  11.   long fcbPLen;
  12.   long fcbCrPs;
  13.   void *fcbVPtr;
  14.   void *fcbBfAdr;
  15.   short fcbFlPos;
  16.   long fcbClmpSize;
  17.   void *fcbBTCBPtr;
  18.   long fcbExtRec;
  19.   long fcbExtRec2;
  20.   long fcbExtRec3;
  21.   char fcbFType[4];
  22.   long fcbCatPos;
  23.   long fcbDirID;
  24.   char fcbCName[32];
  25. };
  26. typedef struct FCBrec_R FCBrec,*FCBrec_pt;
  27.